home *** CD-ROM | disk | FTP | other *** search
/ GFX Sensations 1 / Graphic Sensations - Volume 1.iso / tools / amiga / 3d_tools / irit40s.lha / Irit / geom_lib / geomvals.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-12-30  |  568 b   |  15 lines

  1. /******************************************************************************
  2. * GeomVals.h - Area, Volume, and counts on polygonal objects.              *
  3. *******************************************************************************
  4. * Written by Gershon Elber, March 1990.                          *
  5. ******************************************************************************/
  6.  
  7. #ifndef GEOM_VAL_GH
  8. #define GEOM_VAL_GH
  9.  
  10. double PolyObjectArea(IPObjectStruct *PObj);
  11. double PolyObjectVolume(IPObjectStruct *PObj);
  12. double PolyCountPolys(IPObjectStruct *PObj);
  13.  
  14. #endif /* GEOM_VAL_GH */
  15.